type testing.chattyPrinter

7 uses

	testing (current package)
		testing.go#L574: type chattyPrinter struct {
		testing.go#L581: func newChattyPrinter(w io.Writer) *chattyPrinter {
		testing.go#L582: 	return &chattyPrinter{w: w, json: chatty.json}
		testing.go#L589: func (p *chattyPrinter) prefix() string {
		testing.go#L599: func (p *chattyPrinter) Updatef(testName, format string, args ...any) {
		testing.go#L613: func (p *chattyPrinter) Printf(testName, format string, args ...any) {
		testing.go#L651: 	chatty         *chattyPrinter // A copy of chattyPrinter, if the chatty flag is set.